home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 59 / 59.xpi / chrome / useragentswitcher.jar / content / useragentswitcher / common / array.js next >
Text File  |  2009-06-30  |  624b  |  33 lines

  1. // User Agent Switcher array
  2. var UserAgentSwitcherArray =
  3. {
  4.     // Converts a collection to an array
  5.     convertCollectionToArray: function(collection)
  6.     {
  7.         var array            = [];
  8.         var collectionLength = collection.length;
  9.     
  10.         // Loop through the collection
  11.         for(var i = 0; i < collectionLength; i++)
  12.         {
  13.             array.push(collection.item(i));
  14.         }
  15.         
  16.         return array;
  17.     },
  18.  
  19.     // Converts an enumeration to an array
  20.     convertEnumerationToArray: function(enumeration)
  21.     {
  22.         var array = [];
  23.  
  24.         // Loop through the enumeration
  25.         while(enumeration.hasMoreElements())
  26.         {
  27.             array.push(enumeration.getNext());
  28.         }
  29.         
  30.         return array;
  31.     }
  32. };
  33.